var contentType // It is the MIME type that is sent to the server when you call LoadVars.send() or LoadVars.sendAndLoad(). The default is application/x-www-form-urlencoded.
var loaded // By default it is undefined. When a LoadVars.load() or LoadVars.sendAndLoad() operation begins, the loaded property is set to false; when the operation finishes, the loaded property is set to true. If the operation has not yet finished or has failed with an error, the loaded property remains set to false.
function addRequestHeader(headerName, headerValue) // It adds or changes HTTP request headers sent with POST actions.
function getBytesLoaded() // It returns the number of bytes downloaded by LoadVars.load() or LoadVars.sendAndLoad().
function getBytesTotal() // It returns the total number of bytes downloaded by LoadVars.load() or LoadVars.sendAndLoad().
function load(url) // It downloads variables from the specified URL, parses the variable data, and places the resulting variables into my_LoadVars..
function send(url, target, method) // It sends the variables to the specified URL.
function sendAndLoad(url, targetObject, method) // It posts variables to the specified URL.
function toString() // It returns a string containing all variables in my_LoaderVars.
function LoadVars() // It is a constructor instead of a method. It creates a LoadVars object. Then, you can use the methods of that LoadVars object to send and load data.
function onData() // It is invoked when data has been completely downloaded from the server, or when an error occurs while data is downloading from a server. The handler is invoked before the data is parsed and can be used to call a custom parsing routine rather than the one built in to Flash Player. The value of the src parameter, passed to the function that is assigned to LoadVars.onData, can either be undefined, or a string that contains the URL-encoded name-value pairs, which are downloaded from the server. If the returned value is undefined, an error will occurr when downloading the data from the server.
function onLoad() // It is invoked when a LoadVars.load() or LoadVars.sendAndLoad() operation has completed. If the operation was successful, obj_lv is populated with variables downloaded by the operation, and these variables are available when this handler is invoked.